#body {
  background-color: rgb(92, 33, 6);
  background-image: url('\/images\/brownNgoldSeamless.jpg');
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: 3%;
}

#enter-div {
  display: grid;
}

a:link, a:visited {
  background-color: rgb(11, 73, 16);
  color: rgb(207, 182, 37);
  border-left: 3px solid goldenrod;
  border-right: 3px solid goldenrod;
  border-top: 3px solid goldenrod;
  border-bottom: 3px solid goldenrod;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: goldenrod;
  color: black;
}
 
#footer-div {
  display: grid;
  grid-template-areas:
    "Mid Mid Mid";
  grid-template-columns: 3fr;
  gap: 3px;
  position: fixed;
  bottom: 0%;
  left: 0%;
  height: 37px;
  width: 100%;
  background-color: rgb(11, 73, 16);
  color: rgb(207, 182, 37);
  border-top: 3px solid goldenrod;
  z-index: 1000;
}

#footer-m-div {
  grid-area: Mid;
  text-align: center;
  padding: -10px;
}